home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / freeWAIS-sf-1.1 / x / cat.h next >
Encoding:
C/C++ Source or Header  |  1994-08-04  |  1.3 KB  |  58 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE:
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.
  4.  
  5.    This is part of the X user-interface for the WAIS software.  Do with it
  6.    as you please.
  7.  
  8.    jonathan@Think.COM
  9. */
  10.  
  11. /* Copyright (c) CNIDR (see ../COPYRIGHT) */
  12.  
  13. /*
  14.  * $Log: cat.h,v $
  15.  * Revision 1.3  1994/08/05  07:23:04  pfeifer
  16.  * Release beta 04
  17.  *
  18.  * Revision 1.2  93/07/19  16:33:03  warnock
  19.  * Added catalog patches from Wayne Allen
  20.  * 
  21.  * Revision 1.2  1993/07/17  10:09:00  wa
  22.  * Initial revision
  23.  *
  24.  * $Log: cat.h,v $
  25.  * Revision 1.3  1994/08/05  07:23:04  pfeifer
  26.  * Release beta 04
  27.  *
  28.  * Revision 1.2  93/07/19  16:33:03  warnock
  29.  * Added catalog patches from Wayne Allen
  30.  * 
  31.  * Revision 1.2  1993/02/16  15:10:18  freewais
  32.  * Initial revision
  33.  *
  34.  *
  35.  * Revision 1.1  92/06/23  14:09:41  jonathan
  36.  * Initial revision
  37.  * 
  38.  * 
  39.  */
  40.  
  41. typedef struct catbuff {
  42.   Widget    shell;
  43.   SourceID    source;
  44.   ScrollList    List;
  45.   char*        database;
  46.   String*    Items;
  47.   String*     headlines;
  48.   String*    Docids;
  49.   String*       Types;        /* einet */
  50.   Widget    status;
  51.   long          numDocs;    /* einet */
  52.   void*         nextCat;    /* einet */
  53. } _Catbuff, *Catbuff;
  54.  
  55. Catbuff build_cat _AP((char* catalog, SourceID source));
  56. Widget MakeCatPopup _AP((Widget parent,Catbuff cat,char *name));
  57.  
  58.